IOError: [Errno 13] Permission denied when trying to read an file in google app engine

Posted by mahesh on Stack Overflow See other posts from Stack Overflow or by mahesh
Published on 2011-02-18T06:44:05Z Indexed on 2011/02/18 7:25 UTC
Read the original article Hit count: 355

Filed under:
|

I want to read an XML file and parse it, for that I had used SAX parser which requires file as input to parse. For that I had stored my XML file in Entity called XMLDocs with following property

XMLDocs Entity Name name : Property of string type content : property of blob type (will contain my xml file)

Reason I had to store file like this as I had not yet provide my billing detail to google

Now when I try to open this file in my I am getting error of permission denied..

Please help me, what I have to do...

You can see that error by running my app at

www.parsepython.appspot.com

© Stack Overflow or respective owner

Related posts about python

Related posts about google-app-engine